Skip to main content

Working with databases

Create a new database

Connect or Create a Database

Let’s connect to or create a new database:

ArangoDatabase db = arangoDB.db(DbName.of("mydb"));
System.out.println("Creating database...");
db.create();
 
Help us improve

Anything unclear or buggy in this tutorial? Provide Feedback